#include using namespace std; int maximum(int i, int y) { int result = i; if(y > i) { result = y; } return result; } //function overloading float maximum(float x, float y) { float result = x; if(y > x) { result = y; } return result; } void main() { //robin: //cout << maximum(3,4) << endl; //cout << maximum(3.5f,6.8f) << endl; //int x = 0; //batman: //cout << "Some Text" << endl; //x++; //if(x < 5) //{ // goto batman; //} //else //{ // goto robin; //} bool keepLooking = true; for(int i = 0; i < 500 && keepLooking; i++) { if(i == 10) { keepLooking = false; //break; //goto endOfLoop; } } //endOfLoop: }